home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Python / macgetmtime.c < prev    next >
C/C++ Source or Header  |  1995-01-12  |  200b  |  15 lines

  1. #include "macstat.h"
  2. #include "rename2.h"
  3.  
  4. /* Interfaced used by import.c */
  5.  
  6. long
  7. getmtime(path)
  8.     char *path;
  9. {
  10.     struct macstat st;
  11.     if (macstat(path, &st) != 0)
  12.         return -1L;
  13.     return st.st_mtime;
  14. }
  15.